home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Embed / Sources / Embed.hpp < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.4 KB  |  81 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Embed.hpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Author:                M.Boetcher
  7. //
  8. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef EMBED_HPP
  13. #define EMBED_HPP
  14.  
  15. #if !defined(FW_BUILD_MAC)
  16.  
  17. // ----- Foundation Includes -----
  18.  
  19. #include "FWCommon.h"
  20. #include "FWDebug.h"
  21. #include "FWExcLib.h"
  22. #include "FWCollec.h"
  23. #include "FWRefCnt.h"
  24. #include "FWMemory.h"
  25. #include "FWNotifn.h"
  26. #include "FWRunTyp.h"
  27. #include "FWStream.h"
  28. #include "FWString.h"
  29.  
  30. // ----- OS Includes -----
  31.  
  32. #ifndef FWPOINT_H
  33. #include "FWPoint.h"
  34. #endif
  35.  
  36. #ifndef FWRECT_H
  37. #include "FWRect.h"
  38. #endif
  39.  
  40. #ifndef FWODGEOM_H
  41. #include "FWODGeom.h"
  42. #endif
  43.  
  44. // ----- OpenDoc Includes -----
  45.  
  46. #ifndef FWODTYPS_H
  47. #include "FWODTyps.h"
  48. #endif
  49.  
  50. #ifndef SOM_ODDragAndDrop_xh
  51. #include <DragDrp.xh>
  52. #endif
  53.  
  54. #ifndef SOM_Module_OpenDoc_StdProps_defined
  55. #include <StdProps.xh>
  56. #endif
  57.  
  58. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  59. #include <StdTypes.xh>
  60. #endif
  61.  
  62. #ifndef SOM_ODStorageUnit_xh
  63. #include <StorageU.xh>
  64. #endif
  65.  
  66. #ifndef SOM_ODShape_xh
  67. #include <Shape.xh>
  68. #endif
  69.  
  70. #ifndef SOM_ODTransform_xh
  71. #include <Trnsform.xh>
  72. #endif
  73.  
  74. #ifndef SOM_ODSession_xh
  75. #include <ODSessn.xh>
  76. #endif
  77.  
  78. #endif
  79.  
  80. #endif // EMBED_HPP
  81.